home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
Xteq X-Setup
/
xqdcXSP-Setup-EN.exe
/
{app}
/
plugins
/
XQ CoolSwitch Enabled.xpl
< prev
next >
Wrap
Text File
|
2002-04-12
|
1KB
|
48 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Appearance\Interface\Cool Switch (ALT+TAB)"
"NAME"="Cool Switch Disabled"
"VERSION"="1.35"
"LANGUAGE"="VBScript"
"TEXT 1"="Disable Cool Switch"
"DESCRIPTION 1"="If you press ALT+TAB, you perform a so called "Cool Switch"."
"DESCRIPTION 2"="If this option is enabled, the current user is no longer able to use Cool Switch."
"DESCRIPTION 3"="Note: It seems this setting has no effect if you are using IE 4.0 and above."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
sPath="HKEY_CURRENT_USER\Control Panel\Desktop\CoolSwitch"
Sub Plugin_Initialize
i=RegReadValue(sPath)
if IsEmpty(i)=false then
If i=0 then Call SetUIElement(1,true)
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sPath,"0",1)
else
Call RegWriteValue(sPath,"1",1)
end if
Restart
End Sub
Sub Plugin_Terminate
End Sub